Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sortable-dnd

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sortable-dnd

JS Library for Drag and Drop, supports Sortable and Draggable

  • 0.1.3
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Downloads Version

A JS Library for Drag and Drop, supports Sortable and Draggable

Usage

HTML

<ul id="group">
  <li>
    <i class="drag">drag me</i>
    <p>1</p>
  </li>
  <li>
    <i class="drag">drag me</i>
    <p>2</p>
  </li>
  <li>
    <i class="drag">drag me</i>
    <p>3</p>
  </li>
</ul>

JavaScript

import Sortable from 'sortable-dnd'

var DND = new Sortable(
  document.getElementById('group'),
  {
    chosenClass: 'chosen',
    draggable: (e) => e.target.tagName === 'I' ? true : false, // use function
    // draggable: 'i' // use tagName 
    // draggable: '.drag' // use class
    // draggable: '#drag' // use id
    dragging: (e) => {
      return e.target
    },
    dragEnd: (old, new, changed) => {
      ...
    }
  }
)

The component you created will clear all state after destroyed

Options

optiontypedefaultDescription
disabledBooleanfalseDisables the sortable if set to true
draggableString/FunctionundefinedSpecifies which items inside the element should be draggable, the function type must return a boolean
draggingFunctionundefinedSpecifies the drag element, which must return an HTMLElement, such as (e) => e.target
dragEndFunctionundefinedThe callback function when the drag is completed, such as (old, new, changed) => {}
ghostStyleObject{}The style of the mask element when dragging
ghostClassString''The class of the mask element when dragging
chosenClassString{}The class of the selected element when dragging
delayNumber0time in milliseconds to define when the sorting should start
delayOnTouchOnlyBooleanfalseonly delay if user is using touch
animationNumber150Animation speed moving items when sorting
ghostAnimationNumber0Ghost element animation delay before destroyed
forceFallbackBooleanfalsetrue: ignore the HTML5 DnD behaviour and force the fallback to kick in
stopPropagationBooleanfalseThe stopPropagation() method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases

Methods

methodDescription
destroy()Manually clear all the state of the component, using this method the component will not be draggable

Keywords

FAQs

Package last updated on 07 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc